projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abb8fad
)
rk3288: veyron: Init boot-on regulators
author
Carlo Caione
<
[email protected]
>
Mon, 11 Jun 2018 19:00:48 +0000
(20:00 +0100)
committer
Philipp Tomsich
<
[email protected]
>
Fri, 20 Jul 2018 23:55:27 +0000
(
01:55
+0200)
Use regulators_enable_boot_on() to init all the regulators with
regulator-boot-on property.
Signed-off-by: Carlo Caione <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Reviewed-by: Philipp Tomsich <
[email protected]
>
Acked-by: Philipp Tomsich <
[email protected]
>
arch/arm/mach-rockchip/rk3288-board.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-rockchip/rk3288-board.c
b/arch/arm/mach-rockchip/rk3288-board.c
index 8c128d4f94d0bc7bcde0c110aa9a2f4e6242a285..0365793009ed174377cc61573a5088acd4e49659 100644
(file)
--- a/
arch/arm/mach-rockchip/rk3288-board.c
+++ b/
arch/arm/mach-rockchip/rk3288-board.c
@@
-122,6
+122,12
@@
static int veyron_init(void)
if (IS_ERR_VALUE(ret))
return ret;
+ ret = regulators_enable_boot_on(false);
+ if (ret) {
+ debug("%s: Cannot enable boot on regulators\n", __func__);
+ return ret;
+ }
+
return 0;
}
#endif